home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 (Developer)…68k, x86, SPARC, PA-RISC] / NeXTSTEP 3.3 Dev Intel.iso / NextDeveloper / Headers / soundkit / NXSoundOut.h < prev    next >
Text File  |  1993-01-28  |  923b  |  34 lines

  1. /*
  2.  * NXSoundOut.h
  3.  *
  4.  * Copyright (c) 1992, NeXT Computer, Inc.  All rights reserved. 
  5.  */
  6.  
  7. #import "NXSoundDevice.h"
  8.  
  9. @interface NXSoundOut:NXSoundDevice
  10. {
  11.     unsigned int    _options;
  12.     int            _reserved1;
  13. }
  14.  
  15. // Obsolete - use generic parameter api.
  16. + (port_t)lookUpDevicePortOnHost:(const char *)hostName;
  17. - (BOOL)doesInsertZeros;
  18. - (NXSoundDeviceError)setInsertsZeros:(BOOL)flag;
  19. - (BOOL)doesRampUp;
  20. - (NXSoundDeviceError)setRampsUp:(BOOL)flag;
  21. - (BOOL)doesRampDown;
  22. - (NXSoundDeviceError)setRampsDown:(BOOL)flag;
  23. - (BOOL)doesDeemphasize;
  24. - (NXSoundDeviceError)setDeemphasis:(BOOL)flag;
  25. - (BOOL)isSpeakerMute;
  26. - (NXSoundDeviceError)setSpeakerMute:(BOOL)flag;
  27. - (unsigned int)clipCount;
  28. - (NXSoundDeviceError)getAttenuationLeft:(float *)leftDB
  29.                                    right:(float *)rightDB;
  30. - (NXSoundDeviceError)setAttenuationLeft:(float)leftDB
  31.                                    right:(float)rightDB;
  32.  
  33. @end
  34.